VS Code + pylanceで以下のPythonコードを書いているときに、遭遇。
U = Union[int, str]
Expected no type arguments for class "Union"PylancereportGeneralTypeIssues
importが間違っている。from ctypes import Unionしていると思う。 正しくは、from typing import Union。
from ctypes import Union
from typing import Union
VS CodeでAuto Importさせると、こっちがImportされるっぽい…
このページの著者: takanotume24